home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / conf.d / wlan.conf < prev    next >
Text File  |  2006-03-31  |  3KB  |  85 lines

  1. #! /bin/sh 
  2. # Wireless LAN adapter configuration
  3. #
  4. # etc/wlan/wlan.conf
  5. #
  6. # Copyright (C) 1999 AbsoluteValue Systems, Inc.  All Rights Reserved.
  7. # --------------------------------------------------------------------
  8. #
  9. # linux-wlan
  10. #
  11. #   The contents of this file are subject to the Mozilla Public
  12. #   License Version 1.1 (the "License"); you may not use this file
  13. #   except in compliance with the License. You may obtain a copy of
  14. #   the License at http://www.mozilla.org/MPL/
  15. #
  16. #   Software distributed under the License is distributed on an "AS
  17. #   IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  18. #   implied. See the License for the specific language governing
  19. #   rights and limitations under the License.
  20. #
  21. #   Alternatively, the contents of this file may be used under the
  22. #   terms of the GNU Public License version 2 (the "GPL"), in which
  23. #   case the provisions of the GPL are applicable instead of the
  24. #   above.  If you wish to allow the use of your version of this file
  25. #   only under the terms of the GPL and not to allow others to use
  26. #   your version of this file under the MPL, indicate your decision
  27. #   by deleting the provisions above and replace them with the notice
  28. #   and other provisions required by the GPL.  If you do not delete
  29. #   the provisions above, a recipient may use your version of this
  30. #   file under either the MPL or the GPL.
  31. #
  32. # --------------------------------------------------------------------
  33. #
  34. # Inquiries regarding the linux-wlan Open Source project can be
  35. # made directly to:
  36. #
  37. # AbsoluteValue Systems Inc.
  38. # info@linux-wlan.com
  39. # http://www.linux-wlan.com
  40. #
  41. # --------------------------------------------------------------------
  42. #
  43. # Portions of the development of this software were funded by 
  44. # Intersil Corporation as part of PRISM(R) chipset product development.
  45. #
  46. # --------------------------------------------------------------------
  47. # This file is sourced by all configuration scripts.
  48. #
  49. # The WLAN_DEVICES variable identifies the device names of each WLAN device.
  50. # If you have more than one, make sure each one is identified in a whitespace
  51. # separated list that's assigned to WLAN_DEVICES.
  52.  
  53. WLAN_DEVICES="wlan0"
  54.  
  55. # Below is the list of channels to scan, when we scan.
  56. ChannelList="01:02:03:04:05:06:07:08:09:0a:0b:00:00:00"
  57. # Below is the min and max time we linger on a channel during a scan.
  58. ChannelMinTime=200
  59. ChannelMaxTime=250
  60. # And here we have the master scan toggle. 
  61. WLAN_SCAN=n
  62.  
  63. # if you want temporary files to go elsewhere, change this.
  64. TMPDIR=/tmp
  65.  
  66. ##########
  67. # Note:  To bind to a specific network, change the SSID to something different
  68. #        and create the file /etc/wlan/wlancfg-<SSID> with your network-
  69. #        specific settings.  If this file is not present, the settings in
  70. #        /etc/wlancfg/wlancfg-DEFAULT are used.
  71. #
  72. # for example:
  73. #    SSID_wlan0="linux-wlan"
  74. # This expects a file called "/etc/wlan/wlancfg-linux-wlan" to be present.
  75. #
  76. # Use a SSID of "" to associate with any network in range.
  77. #########
  78.  
  79. SSID_wlan0=""
  80. ENABLE_wlan0=y
  81. #SSID_wlan1=""
  82. #ENABLE_wlan1=n
  83. #SSID_wlan2=""
  84. #ENABLE_wlan2=n
  85.